how to change color images
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
mohd akmal masud
il 21 Gen 2021
Modificato: yanqi liu
il 1 Feb 2021
Hi all, i try to fuse between two image.
my coding as below, and my picture as attached.
B = dicomread('TRANSA001_CT025.dcm');
A = dicomread('PETWB001_PT025.dcm');
scale = 512/256
C = imresize(B,scale);
imhowpair(C,B)
My question is, how to change my color for C and B? i want different color for both. so that i easy to see which one is C, and which one is B.
Anyone can help me?
2 Commenti
KALYAN ACHARJYA
il 22 Gen 2021
Have you tried imregister?
https://in.mathworks.com/help/images/ref/imregister.html
Risposta accettata
Gaurav Garg
il 25 Gen 2021
Hi,
Though style transfer may not be applicable in your case, but imfuse and imregister provide very similar functionality you want to achieve.
0 Commenti
Più risposte (1)
yanqi liu
il 1 Feb 2021
Modificato: yanqi liu
il 1 Feb 2021
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/505953/image.png)
clc; clear all; close all;
B = imread('image B.jpg');
C = imread('image C.jpg');
B = imresize(B,[size(C,1) size(C,2)],'bilinear');
figure; imshow(C)
figure; imshow(B)
figure; imshowpair(C,B,'Scaling','independent','ColorChannels','red-cyan')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/505948/image.png)
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!