Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
f660461b
Commit
f660461b
authored
Aug 03, 2015
by
Suleyman TURKMEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
documentation patch
parent
da948c82
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
highgui.hpp
modules/highgui/include/opencv2/highgui.hpp
+0
-0
imgcodecs.hpp
modules/imgcodecs/include/opencv2/imgcodecs.hpp
+3
-1
imgproc.hpp
modules/imgproc/include/opencv2/imgproc.hpp
+2
-2
No files found.
modules/highgui/include/opencv2/highgui.hpp
View file @
f660461b
This diff is collapsed.
Click to expand it.
modules/imgcodecs/include/opencv2/imgcodecs.hpp
View file @
f660461b
...
...
@@ -110,9 +110,11 @@ returns an empty matrix ( Mat::data==NULL ). Currently, the following file forma
- JPEG 2000 files - \*.jp2 (see the *Notes* section)
- Portable Network Graphics - \*.png (see the *Notes* section)
- WebP - \*.webp (see the *Notes* section)
- Portable image format - \*.pbm, \*.pgm, \*.ppm (always supported)
- Portable image format - \*.pbm, \*.pgm, \*.ppm
\*.pxm, \*.pnm
(always supported)
- Sun rasters - \*.sr, \*.ras (always supported)
- TIFF files - \*.tiff, \*.tif (see the *Notes* section)
- OpenEXR Image files - \*.exr (see the *Notes* section)
- Radiance HDR - \*.hdr, \*.pic (always supported)
@note
...
...
modules/imgproc/include/opencv2/imgproc.hpp
View file @
f660461b
...
...
@@ -1968,8 +1968,8 @@ way:
// specify fx and fy and let the function compute the destination image size.
resize(src, dst, Size(), 0.5, 0.5, interpolation);
@endcode
To shrink an image, it will generally look best with
CV_
INTER_AREA interpolation, whereas to
enlarge an image, it will generally look best with
CV_INTER_CUBIC (slow) or CV_
INTER_LINEAR
To shrink an image, it will generally look best with
cv::
INTER_AREA interpolation, whereas to
enlarge an image, it will generally look best with
cv::INTER_CUBIC (slow) or cv::
INTER_LINEAR
(faster but still looks OK).
@param src input image.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment