- 
                        markEmbed
                        
                          说明:  产生水印,并进行基于DCT域的水印嵌入。(Have a watermark and DCT-based watermark embedding domain.)                         
                            - 2009-08-12 11:02:17下载
- 积分:1
 
- 
                        Histogram-equalization
                        
                          该程序主要用于图像处理中直方图均衡化,语言环境VC++(The program is mainly used for image processing, histogram equalization, the language environment VC++)                         
                            - 2012-08-14 15:09:23下载
- 积分:1
 
- 
                        image-enhancement-function
                        
                          伽马变换,直方图均衡化,直方图修正方案123,自适应全局直方图均衡局部锐化,中值滤波(Gamma transform, histogram equalization, histogram modification scheme 123, adaptive global histogram equalization local sharpen the median filter)                         
                            - 2012-04-27 16:15:00下载
- 积分:1
 
- 
                        移动目标检测
                        
                          说明:  在matlab环境下对视频中的运动目标进行检测,动态目标检测(In the MATLAB environment, the moving object detection in the video, dynamic object detection)                         
                            - 2020-12-16 19:01:55下载
- 积分:1
 
- 
                        MATLAB-CODE
                        
                          matlab 实现暗通道去雾算法 根据cvpr论文改编(matlab channel to achieve the dark fog adaptation algorithm based on cvpr papers)                         
                            - 2011-08-22 08:52:27下载
- 积分:1
 
- 
                        chenggongchengxu
                        
                          rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)  
{  
     // r,g,b values are from 0 to 1   
    // h = [0,360], s = [0,1], v = [0,1]   
    // if s == 0, then h =-1 (undefined)   
    float min, max, delta,tmp   
    tmp = R>G?G:R   
    min = tmp>B?B:tmp   
    tmp = R>G?R:G   
    max = tmp>B?tmp:B   
    V = max  // v   
    delta = max- min   
    if( max != 0 )  
        S = delta/max  // s   
    else  
    {  
        // r = g = b = 0 // s = 0, v is undefined   
        S = 0   
        H = 0   
        return   
    }  
    if (delta == 0){  
        H = 0   
        return   
    }  
    else if(R == max){  
        if (G >= B)  
            H = (G- B)/delta  // between yellow & magenta   
        else  
            H = (G- B)/delta+ 6   
    }  
    else if( G == max )  
        H = 2+ ( B- R )/delta  // between cyan & yellow   
    else if (B == ma)                         
                            - 2011-12-02 10:09:24下载
- 积分:1
 
- 
                        边缘检测算法的一种实现
                        
                          自己写的一种查找图像边缘的方法,效果还不错(a way to find the edge of a picture by myself, and it can reach good result)                         
                            - 2021-03-29 14:19:11下载
- 积分:1
 
- 
                        yundongjianceGUI
                        
                          别人编写的运动检测gui,能够检测运动目标以及测速,给大家分享一下。(Written by someone else' s motion detection gui, can detect moving targets and guns, to share with you.)                         
                            - 2010-06-08 10:39:35下载
- 积分:1
 
- 
                        Digital_watermark_processing
                        
                          基于matlab仿真的数字水印源程序以及仿真结果,可用于毕业设计论文以及课题设计参考学习!(Matlab simulation based on digital watermarking, as well as simulation results source, can be used for graduate thesis and design subject design study!)                         
                            - 2008-05-13 14:10:08下载
- 积分:1
 
- 
                        n个点电荷的电场线代码
                        
                          说明:  n个点电荷电场线的matlab仿真 分别有1个 2个等(可以通过改变程序数字来得到相应的仿真结果)(Matlab simulation of N-point charge electric field lines)                         
                            - 2020-11-15 16:09:40下载
- 积分:1