Commit ae47b8f0 authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

fixed misprint in icvCreateIsometricImage

parent 10774ff0
...@@ -2115,7 +2115,7 @@ CV_IMPL IplImage* icvCreateIsometricImage( IplImage* src, IplImage* dst, ...@@ -2115,7 +2115,7 @@ CV_IMPL IplImage* icvCreateIsometricImage( IplImage* src, IplImage* dst,
if( !dst || dst->depth != desired_depth || if( !dst || dst->depth != desired_depth ||
dst->nChannels != desired_num_channels || dst->nChannels != desired_num_channels ||
dst_size.width != src_size.width || dst_size.width != src_size.width ||
dst_size.height != dst_size.height ) dst_size.height != src_size.height )
{ {
cvReleaseImage( &dst ); cvReleaseImage( &dst );
dst = cvCreateImage( src_size, desired_depth, desired_num_channels ); dst = cvCreateImage( src_size, desired_depth, desired_num_channels );
......
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