1. 首页
  2. 数据库
  3. 其它
  4. LBP martlab程序

LBP martlab程序

上传者: 2021-05-03 12:00:50上传 NONE文件 5.79KB 热度 7次
LBP martlab程序 LBP returns the local binary pattern image or LBP histogram of an image. % J = LBP(I,R,N,MAPPING,MODE) returns either a local binary pattern % coded image or the local binary pattern histogram of an intensity % image I. The LBP codes are computed using N sampling points on a % circle of radius R and using mapping table defined by MAPPING. % See the getmapping function for different mappings and use 0 for % no mapping. Possible values for MODE are % 'h' or 'hist' to get a histogram of LBP codes % 'nh' to get a normalized histogram % Otherwise an LBP code image is returned. % % J = LBP(I) returns the original (basic) LBP histogram of image I % % J = LBP(I,SP,MAPPING,MODE) computes the LBP codes using n sampling % points defined in (n * 2) matrix SP. The sampling points should be % defined around the origin (coordinates (0,0)).
下载地址
用户评论
码姐姐匿名网友 2025-03-14 11:18:06

需要自己补充getmapping函数,否则无法运行。

码姐姐匿名网友 2025-03-14 23:21:08

可以运行,但没数据库啊

码姐姐匿名网友 2025-03-15 02:34:04

LBP的matlab实现,亲测可用。

码姐姐匿名网友 2025-03-14 19:20:53

运行了还行谢谢了

码姐姐匿名网友 2025-03-14 15:20:41

有比较详细的注解,建议先阅读LBP文献,并且给出了实例程序