Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CH01/CH01_SEC02.m
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
clear all, close all, clc

A=imread('../DATA/dog.jpg');
A=imread('CH01/dog.jpg');
X=double(rgb2gray(A)); % Convert RBG->gray, 256 bit->double.
nx = size(X,1); ny = size(X,2);
imagesc(X), axis off, colormap gray
Expand Down
2 changes: 1 addition & 1 deletion CH01/CH01_SEC02_production.m
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
clear all, close all, clc

A=imread('../DATA/dog.jpg');
A=imread('CH01/dog.jpg');
X=double(rgb2gray(A)); % Convert RBG to gray, 256 bit to double.
nx = size(X,1); ny = size(X,2);

Expand Down