mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 19:59:08 +08:00
updated sources to correct buildbot warnings
This commit is contained in:
parent
25b482f1c9
commit
9c26387ce0
@ -209,7 +209,7 @@ Retina::getMagno
|
||||
|
||||
* a Mat, this output is rescaled for standard 8bits image processing use in OpenCV
|
||||
|
||||
* RAW methods actually return a 1D matrix (encoding is M1, M2, ... Mn), this output is the original retina filter model output, without any quantification or rescaling.
|
||||
* RAW methods actually return a 1D matrix (encoding is M1, M2,... Mn), this output is the original retina filter model output, without any quantification or rescaling.
|
||||
|
||||
Retina::getParameters
|
||||
+++++++++++++++++++++
|
||||
|
@ -573,7 +573,7 @@ const Mat RetinaImpl::getParvoRAW() const {
|
||||
if (_retinaFilter->getColorMode()) // check if color mode is enabled
|
||||
{
|
||||
// create a cv::Mat table (for RGB planes as a single vector)
|
||||
const float *retinaParvoFilterOutputPTR=&(_retinaFilter->getColorOutput()[0]);
|
||||
const float *retinaParvoFilterOutputPTR=&(_retinaFilter->getColorOutput()[0]);
|
||||
return Mat(_retinaFilter->getColorOutput().size(), 1, CV_32F, (void*)retinaParvoFilterOutputPTR);
|
||||
}
|
||||
// otherwise, output is gray level
|
||||
|
@ -147,4 +147,3 @@ int main(int argc, char* argv[]) {
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user