コード例 #1
0
    def generate(self):

        width = self.parent_gui.width
        height = self.parent_gui.height
        self.analyze_image()

        self.current_image = Image.new("RGB", (width, height), self.base_color)
        draw = ImageDraw.Draw(self.current_image)

        #try:
        for each in self.colors:
            for x in range(0, 500):
                #distribution = [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9]
                distribution = [0.5, 0.5, 0.9, 0.5, 0.5, 0.5, 0.9, 0.5]
                blob = DCS_utils.Cammo_blob(each,
                                            0,
                                            draw,
                                            width,
                                            height,
                                            distribution,
                                            max_level=int(
                                                self.parent_gui.levels.get()))
        #except:
        #    tkMessageBox.showerror(message="Input image file not specified")

        #    return

        self.imagetk = ImageTk.PhotoImage(self.current_image)
        self.parent_gui.canvas.create_image(0, 0, image=self.imagetk)
        self.parent_gui.canvas.config(
            scrollregion=self.parent_gui.canvas.bbox(Tkinter.ALL))
コード例 #2
0
ファイル: DCS_processor.py プロジェクト: sbobovyc/DCS
def analyze_source_image(source_image_path, num_colors):
        hist, err = DCS_utils.histogram_image(source_image_path)
        #error check
        if err != 0:
            return
            
        colors = DCS_utils.calc_colors(hist,num_colors)
        print colors
        
        base_color = (0,0,0) 
        
        for each in colors[0:len(colors)-1]:
            base_color = (base_color[0] + each[0], base_color[1] + each[1], base_color[2] + each[2])
             
        base_color = (base_color[0] / len(colors)-1, base_color[1] / len(colors)-1, base_color[2] / len(colors)-1)
        
        print "base color", base_color
コード例 #3
0
ファイル: DCS_gui_events.py プロジェクト: sbobovyc/DCS
 def analyze_image(self):
     hist, err = DCS_utils.histogram_image(self.source_image_path)
     #error check
     if err != 0:
         return
         
     self.colors = DCS_utils.calc_colors(hist, int(self.parent_gui.num_colors.get()))
     print self.colors
     
     self.base_color = (0, 0, 0) 
     
     for each in self.colors[0:len(self.colors) - 1]:
         self.base_color = (self.base_color[0] + each[0], self.base_color[1] + each[1], self.base_color[2] + each[2])
          
     self.base_color = (self.base_color[0] / len(self.colors) - 1, self.base_color[1] / len(self.colors) - 1, self.base_color[2] / len(self.colors) - 1)
     
     print "base color", self.base_color
コード例 #4
0
ファイル: DCS_processor.py プロジェクト: sbobovyc/DCS
def DCS_processor(source_image_path, num_colors, output_width, output_height):

    
    print source_image_path          
    self.analyze_image()
    self.thumb = DCS_utils.source_image_thumbnail(self.source_image_path)
    self.parent_gui.canvas2.create_image(64,64,image=self.thumb)
	output_width = 600
	output_height = 600
	
	self.current_image = Image.new ( "RGB", (output_width,output_height), self.base_color )
	draw = ImageDraw.Draw ( self.current_image )
	
	
	for x in range(0, 500):
	    blob = DCS_utils.Cammo_blob(self.colors[0],0,draw,width,height, max_level=2)
	    blob = DCS_utils.Cammo_blob(self.colors[1],0,draw,width,height, max_level=2)
	    blob = DCS_utils.Cammo_blob(self.colors[2],0,draw,width,height, max_level=2)
	self.imagetk = ImageTk.PhotoImage(self.current_image)
	self.parent_gui.canvas.create_image(0,0,image=self.imagetk)
	self.parent_gui.canvas.config(scrollregion=self.parent_gui.canvas.bbox(Tkinter.ALL))
コード例 #5
0
    def analyze_image(self):
        hist, err = DCS_utils.histogram_image(self.source_image_path)
        #error check
        if err != 0:
            return

        self.colors = DCS_utils.calc_colors(
            hist, int(self.parent_gui.num_colors.get()))
        print self.colors

        self.base_color = (0, 0, 0)

        for each in self.colors[0:len(self.colors) - 1]:
            self.base_color = (self.base_color[0] + each[0],
                               self.base_color[1] + each[1],
                               self.base_color[2] + each[2])

        self.base_color = (self.base_color[0] / len(self.colors) - 1,
                           self.base_color[1] / len(self.colors) - 1,
                           self.base_color[2] / len(self.colors) - 1)

        print "base color", self.base_color
コード例 #6
0
ファイル: DCS_gui_events.py プロジェクト: sbobovyc/DCS
 def file_open(self):
     self.source_image_path = askopenfilename() 
     print self.source_image_path          
     self.analyze_image()
     self.thumb = DCS_utils.source_image_thumbnail(self.source_image_path)
     self.parent_gui.canvas2.create_image(64, 64, image=self.thumb)
コード例 #7
0
 def file_open(self):
     self.source_image_path = askopenfilename()
     print self.source_image_path
     self.analyze_image()
     self.thumb = DCS_utils.source_image_thumbnail(self.source_image_path)
     self.parent_gui.canvas2.create_image(64, 64, image=self.thumb)