Skip to content

Commit c323b74

Browse files
Introduction to Facial Micro Expressions Analysis
Introduction-to-Facial-Micro-Expressions-Analysis-Using-Color-and-Depth-Images-a-Matlab-Coding-Approach In order to use the book you need to download the book folder: https://drive.google.com/file/d/13bEsXjl3aoJ0SdUnTknvIiPxH5FpY855/view?usp=sharing
1 parent cda292e commit c323b74

File tree

67 files changed

+1770
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1770
-0
lines changed
8.4 MB
Binary file not shown.
441 KB
Loading
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
clear;
3+
4+
RGB=imread('1.2.jpg');
5+
YIQ = rgb2ntsc(RGB);
6+
YCBCR = rgb2ycbcr(RGB);
7+
8+
9+
% subplot(2,3,1)
10+
% subimage(YIQ(:,:,1));title('Y - Luma');
11+
% subplot(2,3,2)
12+
% subimage(YIQ(:,:,2));title('I - In-phase');
13+
% subplot(2,3,3)
14+
% subimage(YIQ(:,:,3));title('Q - Quadrature');
15+
% subplot(2,3,4)
16+
% subimage(YCBCR(:,:,1));title('Y - Luma');
17+
% subplot(2,3,5)
18+
% subimage(YCBCR(:,:,2));title('Y - Chrominance Blue');
19+
% subplot(2,3,6)
20+
% subimage(YCBCR(:,:,3));title('Y - Chrominance Red');
21+
22+
montage({YIQ(:,:,1), YIQ(:,:,2),YIQ(:,:,3)},'Size', [3 1])
23+
figure;
24+
montage({YCBCR(:,:,1),YCBCR(:,:,2),YCBCR(:,:,3)},'Size', [3 1])
42.6 KB
Loading
6.87 KB
Loading
9.35 KB
Loading
5.77 KB
Loading
10.6 KB
Loading
5.1 KB
Loading
11 KB
Loading

0 commit comments

Comments
 (0)