improve kfactor support
This commit is contained in:
12
src/main.cpp
12
src/main.cpp
@ -242,12 +242,14 @@ int perfromOperation(int operation, char** fileNames, const Config& config)
|
||||
{
|
||||
cv::imshow( "Viewer", remaped.image );
|
||||
cv::waitKey(0);
|
||||
cv::imshow( "Viewer", remaped.angleX);
|
||||
cv::imshow( "Viewer", remaped.angle);
|
||||
cv::waitKey(0);
|
||||
cv::imshow( "Viewer", remaped.angleY);
|
||||
cv::waitKey(0);
|
||||
applyKfactor(remaped.image, remaped.angleX, 3);
|
||||
cv::imshow( "remaped.image", remaped.image );
|
||||
}
|
||||
|
||||
applyKfactor(remaped.image, remaped.angle, config.kFactor);
|
||||
if(config.verbose)
|
||||
{
|
||||
cv::imshow("Viewer", remaped.image );
|
||||
cv::waitKey(0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user