mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-02-02 12:38:40 +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::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;
|
||||
|
||||
cv::Vec3b bgr;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user