%# create fan-shaped coordinates
[R,PHI] = meshgrid(linspace(1,2,5), linspace(0,pi/2,10));
X = R.*cos(PHI); Y = R.*sin(PHI);
X = X(:); Y = Y(:);
num = numel(X);
%# images at each point (they don't have to be the same)
img = imread('coins.png');
img = repmat({img}, [num 1]);
%# plot scatter of images
SCALE = 0.2; %# image size along the biggest dimension
figure
for i=1:num
%# compute XData/YData vectors of each image
[h w] = size(img{i});
if h>w
scaleY = SCALE;
scaleX = SCALE * w/h;
else
scaleX = SCALE;
scaleY = SCALE * h/w;
end
xx = linspace(-scaleX/2, scaleX/2, h) + X(i);
yy = linspace(-scaleY/2, scaleY/2, w) + Y(i);
%# note: we are using the low-level syntax of the function
image('XData',xx, 'YData',yy, 'CData',img{i}, 'CDataMapping','scaled')
end
axis image, axis ij
colormap gray, colorbar
set(gca, 'CLimMode','auto')
insert images to a plot
相關文章
- web imagesWeb
- Android imagesAndroid
- node上擷取圖片工具 images(node-images)
- Kubernetes – Images
- Lets-Plot-KotlinKotlin
- 16-containers-ImagesAI
- Mounting ISO images on AIXAI
- Remove Untagged Images From DockerREMDocker
- styling the SVG imagesSVG
- Matplotlib.pyplot.plot 繪圖繪圖
- Matlab中的plot函式Matlab函式
- Pythonic AI generation of images and videosPythonAIIDE
- Oracle中的insert/insert all/insert firstOracle
- OpenCV&&python_影象平滑(Smoothing Images)OpenCVPython
- "mkimage" command not found - U-Boot images will not be builtbootUI
- Fedora Core 6 Pre release images available(轉)AI
- Pandas高階教程之:plot畫圖詳解
- Oracle 的 INSERT ALL和INSERT FIRSTOracle
- insert /*+ append */ into 與insert into 的區別APP
- INSERT ALL 和INSERT FIRST 的區別
- [MATLAB] plot畫圖簡單細節隨記Matlab
- SoviChart資料視覺化:散點圖(Scatter plot)視覺化
- Multitable Insert
- 《EARLY METHODS FOR DETECTING ADVERSARIAL IMAGES》閱讀筆記筆記
- Segmentation of retinal OCT images using a random forest classifierSegmentationrandomREST
- R視覺化:plot函式基礎操作,小白教程視覺化函式
- oracle bulk Insert 比insert 快不是一點啊.Oracle
- SQL__INSERTSQL
- MySQL INSERT DELAYEDMySql
- Search Insert Position
- Oracle Insert BLOBOracle
- E - Insert or Erase
- insert into select
- 轉載 個人用 How To Remove Docker Images, Containers, and VolumesREMDockerAI
- 《Density Map Guided Object Detection in Aerial Images》論文10問GUIIDEObject
- 直接insert與儲存過程insert效能區別儲存過程
- octave中的plot圖不太正常的解決辦法
- 關於insert /*+ append*/ 各種insert插入速度比較APP