代码搜索:image processing
找到约 10,000 项符合「image processing」的源代码
代码结果 10,000
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/452744/7433512
pdf d g manolakis - statistical and adaptive signal processing - spectral estimation, signal modeling, adaptive filtering and array processing.pdf
www.eeworm.com/read/428608/8856150
pdf solutionsmanual-statistical and adaptive signal processing.pdf
www.eeworm.com/read/382350/9033971
pdf processing_queries_on_tree-structured_data_efficiently.pdf
www.eeworm.com/read/372265/9514846
pdf comparison of recursive and batch processing for impact point.pdf
www.eeworm.com/read/423533/10553446
pdf space-time processing for mimo communications.pdf
www.eeworm.com/read/421861/10685266
pdf 2003 pattern recognition in speech and language processing.pdf
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|