mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 06:03:15 +08:00
Fix build warning introduced in commit:424bc609b6f352a2b10f2a01ffcd037483e3591f
This commit is contained in:
parent
b929012583
commit
b2acf50c81
@ -258,9 +258,9 @@ void RetinaColor::runColorDemultiplexing(const std::valarray<float> &multiplexed
|
||||
_demultiplexedTempBuffer=0;
|
||||
// -> demultiplex process
|
||||
register unsigned int *colorSamplingPRT=&_colorSampling[0];
|
||||
register const float *multiplexedColorFramePTR=get_data(multiplexedColorFrame);
|
||||
register const float *multiplexedColorFramePtr=get_data(multiplexedColorFrame);
|
||||
for (unsigned int indexa=0; indexa<_filterOutput.getNBpixels() ; ++indexa)
|
||||
_demultiplexedTempBuffer[*(colorSamplingPRT++)]=*(multiplexedColorFramePTR++);
|
||||
_demultiplexedTempBuffer[*(colorSamplingPRT++)]=*(multiplexedColorFramePtr++);
|
||||
|
||||
// interpolate the demultiplexed frame depending on the color sampling method
|
||||
if (!adaptiveFiltering)
|
||||
|
Loading…
Reference in New Issue
Block a user