-
Notifications
You must be signed in to change notification settings - Fork 1
/
untitled.m
47 lines (43 loc) · 1 KB
/
untitled.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
%pyversion D:\Program Files\python3.7\python.exe
clc
clear
%
% import py.testyby.*
% mod = py.importlib.import_module('testyby');
% %
% % py.importlib.reload(mod);
%
% % aa = py.sys.path;
% P = py.sys.path;
% if count(P,'modpath') == 0
% insert(P,int32(0),'modpath');
% end
% img = py.cv2.imread('E:\test.jpg');
% py.cv2.imshow('img',img);
%
% if count(py.sys.path,'') == 0
% insert(py.sys.path,int32(0),'');
% end
% %r=py.sum(2,2)
% py.cv2.imread();
% % res = sum(5, 7)
%
% path=sprintf('E:/test.jpg');
% %读入uint8类型图像
% I_uint8=imread(path);
% %将uint8类型图像转为double型,并且会将
% %灰度[0,255]自动归一化[0,1]
% I = im2double(I_uint8);
% imwrite(I,'out.png');%保存图像
%mod = py.('mymod.py');
%
% py.importlib.reload(mod);
% py.importlib.reload();
P = py.sys.path;
if count(py.sys.path,'') == 0
insert(py.sys.path,int32(0),'');
end
% N = py.cv2.aruco_DetectorParameters.list({'Jones','Johnson','James'});
a = 1;
b = 3;
c = py.mymod.sum(a,b);