mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-02-16 02:18:39 +00:00
remove casting since it is casted implicitly
This commit is contained in:
parent
6f9f0c03aa
commit
24cf23f026
|
|
@ -27,7 +27,7 @@ namespace Image {
|
||||||
cv::Size dim = in.size();
|
cv::Size dim = in.size();
|
||||||
cv::Mat out(dim, in.type());
|
cv::Mat out(dim, in.type());
|
||||||
|
|
||||||
float *intImg = (float *) malloc(dim.width * dim.height * sizeof(float));
|
float *intImg = malloc(dim.width * dim.height * sizeof(float));
|
||||||
float sum;
|
float sum;
|
||||||
|
|
||||||
cv::Vec3b bgr;
|
cv::Vec3b bgr;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user