mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
opencv: Use cv::AutoBuffer<>::data()
This commit is contained in:
committed by
Alexander Alekhin
parent
135ea264ef
commit
b09a4a98d4
@@ -230,7 +230,7 @@ namespace
|
||||
src_(src), dst_(dst), lut_(lut), tileSize_(tileSize), tilesX_(tilesX), tilesY_(tilesY)
|
||||
{
|
||||
buf.allocate(src.cols << 2);
|
||||
ind1_p = (int *)buf;
|
||||
ind1_p = buf.data();
|
||||
ind2_p = ind1_p + src.cols;
|
||||
xa_p = (float *)(ind2_p + src.cols);
|
||||
xa1_p = xa_p + src.cols;
|
||||
|
||||
Reference in New Issue
Block a user