Margincrop
Simple way of cropping images by specifying the amount of pixels to be cut away from the image edges.
Of course imcrop exists, but I'm not a fan of using the rectangle syntax.
So why this?
- Fast
- Practical syntax (for me at least)
- Can handle higher dimensions
- Couldn't find anything similar on FEX with expected tags
Crops along the first 2 dimensions, e.g.:
I = imread('peppers.png'); %rgb image
J = margincrop(I,[10 20],[100 100]);
subplot(1,2,1);imshow(I);
subplot(1,2,2);imshow(J);
Feedback is welcome.
Citar como
Jurgen (2024). Margincrop (https://www.mathworks.com/matlabcentral/fileexchange/39849-margincrop), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- Image Processing and Computer Vision > Image Processing Toolbox > Geometric Transformation and Image Registration >
- MATLAB > Graphics > Images > Read, Write, and Modify Image >
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 |