1. 程式人生 > >C#實現影象的滑鼠裁剪

C#實現影象的滑鼠裁剪

C#的影象裁剪很容易操作,這裡給個實現的例子

關鍵是需要處理滑鼠的事件和一些更新

實現滑鼠移動的程式碼.注意更新不要全部重畫,只有選擇矩形部分重畫

  private void Form1_MouseMove(object sender, MouseEventArgs e)
        {

            if (Track_move)
                endpoint = new Point(e.X, e.Y);
            else
            {
                return;
            }
            rect1 = new Rectangle(stpoint.X, stpoint.Y, endpoint.X - stpoint.X, endpoint.Y - stpoint.Y);

            Rectangle tempr = new Rectangle(rect1.X, rect1.Y, rect1.Width + 2, rect1.Height + 2);
            this.Invalidate(tempr);
        }

選擇結束的處理程式碼.

  private void Form1_MouseUp(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left && Track_move==true )
            {
                Track_move = false;
                endpoint = new Point(e.X, e.Y);
                rect1 = new Rectangle(stpoint.X, stpoint.Y, endpoint.X - stpoint.X, endpoint.Y - stpoint.Y);
                Rectangle rectorg = new Rectangle(borg.X, borg.Y, image1.Width, image1.Height);
                if (rect1.Width <= 0)
                    return;
                if (rect1.Height <= 0)
                    return;
                if (rectorg.Contains(rect1))
                {
                    Rectangle rectadj = new Rectangle(rect1.X - borg.X, rect1.Y - borg.Y, rect1.Width, rect1.Height);
                    Bitmap cropimge = image1.Clone(rectadj, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
                    pictureBox2.Image = cropimge;
                }
                else
                {
                    pictureBox2.Image = null;
                }
                this.Invalidate();
            }
        }

程式的整個程式碼

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace imageForms
{
    static class Program
    {
        /// <summary>
        /// 應用程式的主入口點。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
    public partial class Form1 : Form
    {
        private System.Windows.Forms.PictureBox pictureBox2;
        private System.Windows.Forms.Label label1;
        public Form1()
        {
            InitializeComponent();
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            showimg();

        }
        Bitmap image1;
        private void showimg()
        {
            int wd = 400;
            int hg = 200;
            int len = wd * hg * 3;
            byte[] pdata = new byte[len];
            for (int i = 0; i < len; i++)
            {
                if (i > 3 * wd * (hg / 2))
                {
                    pdata[i] = 255;
                }
                else
                {
                    pdata[i] = 0;
                }
            }

            try
            {
                image1 = new Bitmap(wd, hg, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
                for (int y = 0; y < hg; y++)
                {
                    for (int x = 0; x < wd; x++)
                    {
                        Color crr = Color.FromArgb(pdata[3 * wd * y + x], pdata[3 * wd * y + x], pdata[3 * wd * y + x]);
                        image1.SetPixel(x, y, crr);
                    }
                }
                // Set the PictureBox to display the image.
              //  pictureBox1.Image = image1;

            }
            catch (ArgumentException)
            {
                MessageBox.Show("There was an error check data.");
            }
        }
        Point stpoint,endpoint;    
        Rectangle rect1;     
        Point borg = new Point(20, 20);
        protected override void  OnPaint(PaintEventArgs e)
        {
         
            base.OnPaint(e);
             e.Graphics.DrawImage(image1, borg);
             if (rect1 != null )
             {
                 e.Graphics.DrawRectangle(new Pen(Color.Red, 1), rect1);
             }
        
        }

        private void Form1_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {
                stpoint = new Point(e.X, e.Y);
                Track_move = true;
                return;
            }
            Track_move = false;
        }

        private void Form1_MouseUp(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left && Track_move==true )
            {
                Track_move = false;
                endpoint = new Point(e.X, e.Y);
                rect1 = new Rectangle(stpoint.X, stpoint.Y, endpoint.X - stpoint.X, endpoint.Y - stpoint.Y);
                Rectangle rectorg = new Rectangle(borg.X, borg.Y, image1.Width, image1.Height);
                if (rect1.Width <= 0)
                    return;
                if (rect1.Height <= 0)
                    return;
                if (rectorg.Contains(rect1))
                {
                    Rectangle rectadj = new Rectangle(rect1.X - borg.X, rect1.Y - borg.Y, rect1.Width, rect1.Height);
                    Bitmap cropimge = image1.Clone(rectadj, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
                    pictureBox2.Image = cropimge;
                }
                else
                {
                    pictureBox2.Image = null;
                }
                this.Invalidate();
            }
        }
        bool Track_move=false ;
        private void Form1_MouseMove(object sender, MouseEventArgs e)
        {

            if (Track_move)
                endpoint = new Point(e.X, e.Y);
            else
            {
                return;
            }
            rect1 = new Rectangle(stpoint.X, stpoint.Y, endpoint.X - stpoint.X, endpoint.Y - stpoint.Y);

            Rectangle tempr = new Rectangle(rect1.X, rect1.Y, rect1.Width + 2, rect1.Height + 2);
            this.Invalidate(tempr);
        }
        private System.ComponentModel.IContainer components = null;

        private void InitializeComponent()
        {
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            //
            // pictureBox2
            //
            this.pictureBox2.Location = new System.Drawing.Point(605, 103);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(227, 173);
            this.pictureBox2.TabIndex = 1;
            this.pictureBox2.TabStop = false;
            //
            // label1
            //
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(602, 58);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(127, 15);
            this.label1.TabIndex = 2;
            this.label1.Text = "滑鼠左鍵選擇裁剪";
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(844, 558);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox2);
            this.Name = "Form1";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseUp);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
            this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

    }
}



相關推薦

C#實現影象滑鼠裁剪

C#的影象裁剪很容易操作,這裡給個實現的例子 關鍵是需要處理滑鼠的事件和一些更新 實現滑鼠移動的程式碼.注意更新不要全部重畫,只有選擇矩形部分重畫   private void Form1_MouseMove(object sender, MouseEventArgs e)

c# 實現滑鼠拖動沒有標題欄的視窗(窗體的任何部分都可實現拖動效果)

上面形式的窗體,實現窗體的任何部分都可實現拖動 首先需要引入非託管程式碼,直接呼叫windows api         public const int WM_NCLBUTTONDOWN = 0xA1;         public const int HT_CAPT

C++實現影象的各種旋轉操作

說明:Buffer中存放的是要進行旋轉的原始影象,m_pImage中存放轉換後的影象資料。       nHeight是影象的高度,我測試影象是1024;nWidth是影象的寬度,我測試影象是1400

C++實現影象二維DFT離散傅立葉(FFT)程式碼——等效於opencv

這篇文章寫的不錯: 首先是一個opencv的dft執行程式碼: 進行一些簡單處理: (1)去掉using namespace std(會和dft函式實現過程中的自定義complex複數結構體衝突,導致結構體不明確,驗證發現 後面並不需要std名稱空間,若需要自己

c#實現影象影象卷積與濾波——高斯平滑

使用C#語言編寫高斯平滑。 一、線性濾波與卷積的基本概念 2D卷積需要4個巢狀迴圈4-double loop,所以它並不快,除非我們使用很小的卷積核。這裡一般使用3×3或者5×5。而且,對於濾波器,也有一定的規則要求: 1)濾波器的大小應該是奇數,這樣它才有一箇中心

純CSS實現影象滑鼠懸停效果

前端開發whqet,csdn,王海慶,whqet,前端開發專家今天來看一組純CSS實現的滑鼠懸停效果,線上研究程式碼點效果一、效果二、效果三,下載收藏點這裡,效果預覽點這裡。效果1效果1的html檔案<div class="pic"> <img src="

影象處理中的模板匹配c++實現

一、理論基礎 基於相關的模板匹配技術可直接用於在一幅影象中,尋找某種子影象模式。對於大小為MxN的影象f(x,y)和大小為JxK的子影象模式w(x,y),f與w的相關可表示為: 其種,x=0,1,2,…N-K,y=0,1,2,…M-J。此處 的目的是尋找

影象預處理 && C實現

之前用到的一些預處理整理,主要是影象增強和濾波演算法。 程式碼地址:https://github.com/WangLCG/Image_Process/tree/master/Image_enhance 1、直方圖均衡化 調整影象的灰度分佈使其能在0-255範圍內分佈更均衡,可用於提

影象插值演算法的原理及C++實現

簡介: 在影象的處理過程中,經常需要對影象進行尺寸變換、旋轉或者扭曲等操作,在進行這些操作之後,原影象的尺寸往往就發生了改變,為了保持變換後的影象不失真,就需要對影象進行插值。 常見的插值方法有最近鄰插值和雙線性插值。 最近鄰插值: 最近鄰插值是最簡單的一種插值方式,

C#窗體屬性FormBordeStyle設定為none後,通過程式碼實現窗體滑鼠拖動功能

備註:使用的是visual studio2013版本 1、新建C#窗體應用程式,初始化的程式預設FormBordeStyle屬性為Sizable,修改屬性FormBordeStyle為none (1)修改前 (2)修改後 2、F5除錯程式後,此時窗體沒有邊框、

C#進行影象識別與資料採集進而實現對視訊裡的資料採集

窗體佈局的滑鼠移動距離問題oledb資料型別不一致如何更新窗體佈局的滑鼠移動距離問題oledb資料型別不一致如何更新 我的vs2008今天怎麼不能用了啊麻煩進來看看為什麼開發windowsForm程式Gridview隱身無法使用我的vs2008今天怎麼不能用了啊麻煩進來看看為

使用C++實現彩色影象直方圖均衡化的三種方法

引言 本文主要介紹如何實現彩色影象的直方圖均衡化,達到影象增強效果的三種方法: 1. 對RGB三個通道影象分別進行直方圖均衡化,然後再合併三個通道; 2. 提取RGB三個通道影象,計算其平均直方圖結果,然後再進行均衡化; 3. RGB空間轉為HSI空間影象,對I(亮度,Intensi

影象處理(Image Processing) ---------- 影象和影像壓縮(Compression)(C#實現)

空間域壓縮: Fractal Coding :https://blog.csdn.net/weixin_35811044 Run Length Coding: 影象中連續出現的相同Pixel,只記錄一個但需多一個符號記錄其出現的次數,無失真壓縮。Ex.111110000

影象處理(Image Processing) ---------- 直方圖均衡化 (Equalization)(C#實現)

說到直方圖均衡化,首先提一提概率論的知識。 概率論: 離散型隨機變數:能用日常使用的量詞度量的隨機變數。 概率函式:形如  P(x = 1) = 1/6; 概率分佈:

1066 影象過濾——c++實現

題目: 1066 影象過濾 (15 point(s)) 影象過濾是把影象中不重要的畫素都染成背景色,使得重要部分被凸顯出來。現給定一幅黑白影象,要求你將灰度值位於某指定區間內的所有畫素顏色都用一種

C++實現滑鼠控制 封裝常見的模擬滑鼠、鍵盤的操作函式

API 或 MFC 視窗程式 裡 有 函式, 例如 API 函式 設位置: BOOL SetCursorPos( int x, int y); 引數是螢幕座標x,y 標頭檔案 Winuser.h 連結庫 #pragma comment (lib, "User32.lib") 或取位

影象處理(Image Processing) ---------- 碎形壓縮(Fractal)(C#實現)

網上很少關於Fractal壓縮的質料,特此記錄。 先說說自然界事物構成的一種潛在規則。自然界中一切事物的構成都具有巨大的相似性,包括:山、花、樹、人、車 ......。當你仔細觀察一個物體時就會發現,此物體許多部分都是由同一個細小的結構構成。下圖人造栗子: 一個大的形狀可由四個小的相同形

C++——bmp影象裁剪

在之前的部落格中,我們已經實現了bmp影象的讀取與儲存,本文在之前的基礎上對對人影象的資料區進行處理,達到擷取影象部分割槽域的目的,以便以後的影象處理操作,程式碼如下:#include <string.h> #include <malloc.h

灰度影象二值化-----c++實現

前天閒著沒事幹,就寫了寫BMP影象處理,感覺大家還比較感興趣。。所以現在沒事,繼續更新。。這次簡單的寫了灰度影象二值化。。這是什麼概念呢? 影象的二值化的基本原理    影象的二值化處理就是將影象上的點的灰度置為0或255,也就是講整個影象呈現出明顯的黑白效果。即將256個

高斯影象模糊演算法及其 C 實現

高斯模糊的基本思路是根據二維 正太分佈 正態分佈 (感謝 xhr 大牛指正錯別字) 公式生成一個高斯矩陣, 求新影象中的每一點時, 將高斯矩陣的中心對準舊影象的這一點, 並將所有點根據高斯矩陣上對應的點加權平均. 二維正態分佈公式如下: u, v 分別為水平、豎直距離. 觀察可得, 當 r>3σ