Skip to content
Snippets Groups Projects
Commit a55a677d authored by Eric Wait's avatar Eric Wait
Browse files

Printf cleaning

parent 68e8f9f6
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
std::string MaxFilterNeighborhood::printUsage()
{
return "imageOut = CudaMex('MaxFilterNeighborhood',imageIn,[neighborhoodX,neighborhoodY,neighborhoodZ],[device]);";
return "imageOut = CudaMex('MaxFilterNeighborhood',imageIn,[NeighborhoodX,NeighborhoodY,NeighborhoodZ],[device]);";
}
......
......@@ -43,7 +43,7 @@ std::string MinFilterNeighborhood::check( int nlhs, mxArray* plhs[], int nrhs, c
std::string MinFilterNeighborhood::printUsage()
{
return "imageOut = CudaMex('MinFilterNeighborhood',imageIn,[neighborhoodX,neighborhoodY,neighborhoodZ],[device]);";
return "imageOut = CudaMex('MinFilterNeighborhood',imageIn,[NeighborhoodX,NeighborhoodY,NeighborhoodZ],[device]);";
}
......
......@@ -46,7 +46,7 @@ std::string NormalizedHistogram::check( int nlhs, mxArray* plhs[], int nrhs, con
std::string NormalizedHistogram::printUsage()
{
return "histogram = CudaMex('NormalizedHistogram',imageIn,[device])";
return "histogram = CudaMex('NormalizedHistogram',imageIn,[device]);";
}
std::string NormalizedHistogram::printHelp()
......
......@@ -38,7 +38,7 @@
std::string OtsuThesholdValue::printUsage()
{
return "threshold = CudaMex('OtsuThesholdValue',imageIn,[device])";
return "threshold = CudaMex('OtsuThesholdValue',imageIn,[device]);";
}
std::string OtsuThesholdValue::printHelp()
......
......@@ -44,7 +44,7 @@ std::string OtsuThresholdFilter::check( int nlhs, mxArray* plhs[], int nrhs, con
std::string OtsuThresholdFilter::printUsage()
{
return "imageOut = CudaMex('OtsuThresholdFilter',imageIn,[alpha],[device])";
return "imageOut = CudaMex('OtsuThresholdFilter',imageIn,[alpha],[device]);";
}
std::string OtsuThresholdFilter::printHelp()
......
......@@ -41,7 +41,7 @@ std::string ThresholdFilter::check( int nlhs, mxArray* plhs[], int nrhs, const m
std::string ThresholdFilter::printUsage()
{
return "imageOut = CudaMex('ThresholdFilter',imageIn,threshold,[device])";
return "imageOut = CudaMex('ThresholdFilter',imageIn,threshold,[device]);";
}
std::string ThresholdFilter::printHelp()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment