refactor: 项目目录结构重组
- 中文目录名改为英文:cDNA图像处理实例→examples,参考资料→references - web→app(Flask应用标准命名) - 输出目录平移到 data/output/simple/ 和 data/output/full/ - 输入图像统一到 data/input/ - 构建脚本移到 scripts/ - 源码文件改用 snake_case 命名 - 更新所有文件路径引用和文档
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
clc
|
||||
clear
|
||||
close all
|
||||
|
||||
im = imread('cDNA.png');
|
||||
imgray = rgb2gray(im);
|
||||
|
||||
%% sum of row , sum of col
|
||||
sum_col = sum(imgray);
|
||||
sum_row = sum(imgray');
|
||||
|
||||
figure,imshow(imgray)
|
||||
figure,plot(sum_col),title('sum of col');
|
||||
figure,plot(sum_row),title('sum of row');
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 100 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 101 KiB |
Reference in New Issue
Block a user