当前位置 : 主页 > 网络编程 > 其它编程 >

一分钟了解“Matlab把矩阵边缘上的像素设置为特定值”

来源:互联网 收集:自由互联 发布时间:2023-07-02
function[resultMatrix]setEdge(matrix,edgeWidth,edgeValue)%SETEDGE输入一个矩阵matrix然后矩阵最 function [ resultMatrix ] setEdge( matrix,edgeWidth,edgeValue ) %SETEDGE 输入一个矩阵matrix然后矩阵最边上的edgeWidth层元素
function[resultMatrix]setEdge(matrix,edgeWidth,edgeValue)%SETEDGE输入一个矩阵matrix然后矩阵最 function [ resultMatrix ] setEdge( matrix,edgeWidth,edgeValue ) %SETEDGE 输入一个矩阵matrix然后矩阵最边上的edgeWidth层元素用edgeValue填充 %   Detailed explanation goes here matrix(1:edgeWidth,:)edgeValue; matrix(size(matrix,1)-edgeWidth1:size(matrix,1),:)edgeValue; matrix(:,1:edgeWidth)edgeValue; matrix(:,size(matrix,2)-edgeWidth1:size(matrix,2))edgeValue; resultMatrixmatrix; end【本文转自:韩国服务器 https://www.68idc.cn 复制请保留原URL】
上一篇:H5扫码功能实现
下一篇:没有了
网友评论