Clear Filters
Clear Filters

How to allign Y axis of a image with out reversing image?

3 views (last 30 days)
The axis of the image is not alligned with the coordinate system. Could someone help in this regard? If I use set(gca,'YDir','normal') , the image is flipping upside down.
clear all;clc;close all;
figure()
rgb = imread('mango.png');
s = size(rgb);
h1 = image([-0.5 0.5],[-0.7 0.7],rgb);
h1.AlphaData = 1;
% set(gca,'YDir','normal')

Accepted Answer

Matt J
Matt J on 21 Feb 2022
Edited: Matt J on 21 Feb 2022
rgb = imread('peppers.png');
h1 = image([-0.5 0.5],[0.7 -0.7],rgb,'AlphaData',1);
set(gca,'YDir','normal')

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!