Skip to content

Commit

Permalink
comment out test code in convertRoutine.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
WL-Amigo committed Jun 1, 2015
1 parent 91a7dfd commit b71b3a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/convertRoutine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ bool convertWithModels(cv::Mat &inputPlane, cv::Mat &outputPlane,
cv::Size blockSize = modelUtility::getInstance().getBlockSize();
bool requireSplitting = (inputPlane.size().width * inputPlane.size().height)
> blockSize.width * blockSize.height * 3 / 2;
requireSplitting = true;
// requireSplitting = true;
if (blockSplitting && requireSplitting) {
return convertWithModelsBlockSplit(inputPlane, outputPlane, models);
} else {
Expand Down

0 comments on commit b71b3a1

Please sign in to comment.