The instructions are based on this answers.ros.org thread.
You may need the latest pip, follow the official instructions.
Install bloom:
The instructions are based on this answers.ros.org thread.
You may need the latest pip, follow the official instructions.
Install bloom:
| """ | |
| Python implementation of the color map function for the PASCAL VOC data set. | |
| Official Matlab version can be found in the PASCAL VOC devkit | |
| http://host.robots.ox.ac.uk/pascal/VOC/voc2012/index.html#devkit | |
| """ | |
| import numpy as np | |
| from skimage.io import imshow | |
| import matplotlib.pyplot as plt | |
| def color_map(N=256, normalized=False): |
| # @brief | |
| # Performs file upload validation for django. The original version implemented | |
| # by dokterbob had some problems with determining the correct mimetype and | |
| # determining the size of the file uploaded (at least within my Django application | |
| # that is). | |
| # @author dokterbob | |
| # @author jrosebr1 | |
| import mimetypes |
| #include <stdint.h> //uint typedefinitions, non-rtw! | |
| #include <iostream> | |
| #define MASK64(nbits) ((0xffffffffffffffff)>> (64-nbits)) | |
| inline float toPhysicalValue(uint64_t target, float factor, float offset, bool is_signed) | |
| { | |
| if (is_signed) | |
| return ( (int64_t) target ) * factor + offset; |
| #include <stdint.h> | |
| #include <iostream> | |
| #define MASK32(nbits) ((0xffffffff)>> (32-nbits)) | |
| uint32_t extractSignal(const uint8_t* frame, const uint8_t startbit, const uint8_t length, bool is_big_endian) | |
| { | |
| uint8_t startByte = startbit / 8; | |
| uint8_t startbit_in_byte = startbit % 8; | |
| uint8_t end_byte = 0; |