Commit f252242b authored by Davis King's avatar Davis King

Added a cast to avoid compiler errors in visual studio.

parent 6e6aac1e
...@@ -254,28 +254,28 @@ namespace dlib ...@@ -254,28 +254,28 @@ namespace dlib
if (square(horz[r-1][c])+square(vert[r-1][c]) > val || square(horz[r+1][c]) + square(vert[r+1][c]) > val) if (square(horz[r-1][c])+square(vert[r-1][c]) > val || square(horz[r+1][c]) + square(vert[r+1][c]) > val)
assign_pixel(out_img[r][c] , zero); assign_pixel(out_img[r][c] , zero);
else else
assign_pixel(out_img[r][c] , std::sqrt(val)); assign_pixel(out_img[r][c] , std::sqrt((double)val));
break; break;
case '|': case '|':
if (square(horz[r][c-1]) + square(vert[r][c-1]) > val || square(horz[r][c+1]) + square(vert[r][c+1]) > val) if (square(horz[r][c-1]) + square(vert[r][c-1]) > val || square(horz[r][c+1]) + square(vert[r][c+1]) > val)
assign_pixel(out_img[r][c] , zero); assign_pixel(out_img[r][c] , zero);
else else
assign_pixel(out_img[r][c] , std::sqrt(val)); assign_pixel(out_img[r][c] , std::sqrt((double)val));
break; break;
case '/': case '/':
if (square(horz[r-1][c-1]) + square(vert[r-1][c-1]) > val || square(horz[r+1][c+1]) + square(vert[r+1][c+1]) > val) if (square(horz[r-1][c-1]) + square(vert[r-1][c-1]) > val || square(horz[r+1][c+1]) + square(vert[r+1][c+1]) > val)
assign_pixel(out_img[r][c] , zero); assign_pixel(out_img[r][c] , zero);
else else
assign_pixel(out_img[r][c] , std::sqrt(val)); assign_pixel(out_img[r][c] , std::sqrt((double)val));
break; break;
case '\\': case '\\':
if (square(horz[r+1][c-1]) + square(vert[r+1][c-1]) > val || square(horz[r-1][c+1]) + square(vert[r-1][c+1]) > val) if (square(horz[r+1][c-1]) + square(vert[r+1][c-1]) > val || square(horz[r-1][c+1]) + square(vert[r-1][c+1]) > val)
assign_pixel(out_img[r][c] , zero); assign_pixel(out_img[r][c] , zero);
else else
assign_pixel(out_img[r][c] , std::sqrt(val)); assign_pixel(out_img[r][c] , std::sqrt((double)val));
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment