- 浏览: 60105 次
- 性别:
- 来自: 南京
最新评论
-
ewwerpm:
有可供测试的图片吗?
把图像去噪算法用python实现 -
ewwerpm:
楼主要是能提供一个测试图片就最好了。我试了一下,似乎效果不理想 ...
完整的图片去噪代码(python) -
huazhouji:
...
完整的图片去噪代码(python)
文章列表
// 图像二值化
// Bmp: TBitmap; // 输入图像
// Gray: Integer // 阀值
Procedure TwoValue(Bmp: TBitmap; Gray: Integer);
Var
P: PByteArray;
X, Y, Z: Integer;
Begin
//设置为24位真彩色,这样一个象素点包含三个字节
Bmp.PixelFormat := pf24Bit;
For Y := 0 To Bmp.Height - 1 Do
Begin
P := Bmp.Sca ...
- 2009-05-03 20:50
- 浏览 1819
- 评论(0)
vc编译时需要添加netapi32.lib
#include <stdio.h>
#include <stdlib.h>
#include <httpext.h>
#include <windef.h>
#include <Nb30.h>
int getMAC(char * mac)
{
NCB ncb;
typedef struct _ASTAT_
{
ADAPTER_STATUS adapt;
NAME_BUFFER ...
- 2009-04-24 08:36
- 浏览 1014
- 评论(0)
#coding:utf-8
from PIL import Image,ImageDraw
def isWhite(color):
"""
查看像素是否为白色
"""
"""
print color
if type(color) == type(1):
if color == 0:
return False
else:
return True
...
- 2009-04-16 08:43
- 浏览 1969
- 评论(0)
jpeg代码,buffer是传入的位图,每个点一个字节的亮度,顺序排列
/*
for(long y=min(m_lt.y,m_rt.y);y<=max(m_lb.y,m_rb.y);y++)
{
for(long x=lx;x<=rx;x++)
{
if(m_cmp_rbuffer[GET_RBUFFER_POS(x,y)] == 0) continue;
long _x=x,_y=y;
_GetRealPT(_x,_y);
_x = _x /4;
_y = _y /4;
int _pos = _y * m_scr ...
- 2009-04-09 16:31
- 浏览 2044
- 评论(0)
下面是我用python写的一个简单的代理服务器
具备简单的管理功能,运行后 telnet localhost 9000 端口可以进行管理主要功能就是做包转发,如果有一个桥服务器,可以用来外网访问内网用,还是很管用的
#/bin/env python
#coding:utf-8
import socket,select,sys,time
import thread
s_list = []
def loop(cs,addr,s_ip,s_port):
print '%s %d connected.' % addr
ts = socket.socket() ...
- 2009-04-09 15:21
- 浏览 5442
- 评论(0)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#pragma pack (1)
typedef struct
{
unsigned char info[2]; //BM
unsigned int size; //
unsigned int reserve1; //0
unsigned int offset; //0x3E
unsigned int headerinfo; //0x28
unsigned int width; //
unsign ...
- 2009-04-07 17:53
- 浏览 1026
- 评论(0)