Ask Your Question

myro's profile - activity

2015-04-15 10:53:40 -0600 received badge  Editor (source)
2015-04-15 10:51:30 -0600 asked a question OpenCV contrib repo and sample licenses

Hi,

I just wanted to ask under which license the opencv_contrib modules are published https://github.com/Itseez/opencv_contrib? There does not seem to be a license file in that repository. More specifically, I am interested in the tracking sample call code (without any tracker implementation): https://github.com/Itseez/opencv_cont...

Additionally, I would like to ask under which license the OpenCV samples are published? More specifically, I am interested in: https://github.com/Itseez/opencv/blob... I reused the PSR calculation in C++ (about 7 lines of code). Should I put the regular OpenCV license at the top of that file?

Thank you very much!

2015-02-01 12:02:56 -0600 asked a question BGR Float Mat: Interleaved-Channels to Block-Channels

Hello,

I wanted to ask whether there is a function to convert a 3 channel, interleaved, float BGR mat to a 3 channel non-interleaved (block) RGB mat.

The initial layout is: BGRBGRBGRBGRBGRBGR (each letter is a float)

The desired layout is: RRRRRRGGGGGGBBBBBB

Also, this conversion should be done with a single data copy (and not multiple copies for intermediate steps).

Thanks