代码搜索:image processing

找到约 10,000 项符合「image processing」的源代码

代码结果 10,000
www.eeworm.com/read/403922/11506042

html book.image.html

Image Processing (GD)
www.eeworm.com/read/232745/14183567

txt edge_detector.txt

library IEEE; use IEEE.STD_LOGIC_1164.all; library BEH_INT; use BEH_INT.IMAGE_PROCESSING.all; entity EDGE_DETECTOR is generic( NUM_ROWS: NATURAL; NUM_COLS: NATURAL); Port ( CLOCK : in STD_
www.eeworm.com/read/275831/10793935

rb 08 - processing a string one word at a time.rb

class String def word_count frequencies = Hash.new(0) downcase.scan(/\w+/) { |word| frequencies[word] += 1 } return frequencies end end %{Dogs dogs dog dog dogs.}.word_count # => {"dog
www.eeworm.com/read/275831/10793989

rb 07 - processing a string one character at a time.rb

'foobar'.each_byte { |x| puts "#{x} = #{x.chr}" } # 102 = f # 111 = o # 111 = o # 98 = b # 97 = a # 114 = r #--- 'foobar'.scan( /./ ) { |c| puts c } # f # o # o # b # a # r #--- "foo\nbar".each { |x|