«image-processing» 태그된 질문

이러한 문제에는 기존 이미지 파일을 처리하거나 통계를 수집하거나 다른 이미지 처리 작업을 수행하여 기존 이미지 파일을 처리하는 작업이 포함됩니다.

3
고양이 정보 숨기기
귀하는 조국과 의사 소통을 시도하는 비밀 요원입니다. 물론 정보를 숨겨야하기 때문에 아무도 도청하는 메시지가 없습니다. 고양이보다 무엇이 더 좋을까요? 모두 고양이의 웃긴 사진을 좋아 합니다. [인용 필요] 비밀 정보가 숨겨져있는 것으로 의심되지 않습니다! Monaco가 공유 레벨의 레벨 정보를 저장하기 위해 사용하는 알고리즘에서 영감을 얻은 것은 정보를 이미지의 최소 색상 비트로 …

14
성공의 크로마 키
RGB 색상 값 #00FF00은 영화, TV 쇼, 날씨 알림 등을 만드는 데 사용됩니다. 유명한 "TV green"또는 "green screen"색상입니다. 도전 당신의 임무는 PNG 형식 (또는 이미지 라이브러리의 이미지 객체 유형)과 동일한 크기의 두 가지 입력 이미지를 취하는 프로그램을 작성하는 것입니다. 하나의 이미지는 오래된 이미지 일 수 있습니다. 다른 하나는 색상의 배경을 …

3
용의 이미지
사각형으로 만든 트윈 드래곤 커브 의 멋진 GIF 를 보았고 다른 기본 이미지에서 시작하면 어떻게 될지 궁금했습니다. 그래서 이것을하기위한 프로그램을 작성했습니다. 너무 시원해서 도전으로하는 것이 재미있을 것이라고 생각했습니다. 태스크 모서리 길이가 2 (4보다 큰) 인 정사각형 이미지를 촬영합니다. 이 이미지를 만들려면 먼저 이미지를 동일한 크기의 4 개의 수직 밴드로 나누고 …

8
이미지의 모든 색상에 "하나 추가"
이 이미지를 가져와 모든 색상을 16 진수마다 하나씩 추가하면됩니다. 예를 들어, #49de5f될 것입니다 #5aef60합니다 (로 9에 루프 a, 그리고 fA를 반복 0.) 이것은 또한 모든 루프가 다시 돌아 가기 때문에 모든 흰색 ( #ffffff)이 검은 색 ( #000000) 이 된다는 것을 의미 하지만 모든 검은 색은 더 밝은 검은 색 …

3
이미지를 Rainbowlify
이 문제는 이미지에서 색조를 점진적으로 변경하여 다음과 같이 예쁜 그림을 만듭니다. ( 원본 ) 도전 음수가 아닌 두 개의 정수와 선택한 일반적인 이미지 파일 형식의 이미지를 사용하는 프로그램 또는 함수를 작성하십시오 (이미지 또는 원시 이미지 데이터에 대한 경로를 취할 수 있음). 첫 번째 정수는 사이클이라고 하고 두 번째 정수는 오프셋 …

12
수직 슬라이스 결정
이미지가 주어지면 [전체 세로 섹션의 너비 (픽셀 단위)] 1 (있는 경우)을 출력합니다. 세로 섹션이 없으면을 출력하십시오 0. 입력은 로컬 파일 또는 중첩 배열로 제공 될 수 있습니다. 중첩 배열로 입력을 선택하면 흰색 픽셀은 정확한 값으로 표시되고 흰색이 아닌 픽셀은 잘못된 값으로 표시해야합니다. 1. 연속적인 모든 흰색 열의 수 당신은 가정 …

5
정사각형에서 육각형으로 원활한 변환
그리드에서 플레이하는 많은 게임에서 육각형은 Clearly Superior Choice ™입니다. 불행히도, 많은 무료 게임 아트 사이트에는 정사각형 맵에 대한 완벽한 타일 세트 만 있습니다. 과거 프로젝트에서 나는 이것들 중 일부를 사용하여 수동으로 육각형으로 변환했습니다. 그러나 나는 노년기에 게으르다. 작은 스크립트로 프로세스를 쉽게 자동화 할 수 있어야합니다. 그러나 나는 노년기에 게으르다. 그래서 …

12
회색조 이미지 디더링
자체 알고리즘으로 회색조 이미지를 순수한 흑백으로 디더링합니다. 지침 : 당신은 당신의 자신의 새로운 알고리즘을 생각해 내야합니다. 기존 알고리즘 (예 : Floyd-Steinburg)은 사용할 수 없지만 일반적인 기술은 사용할 수 있습니다. 프로그램은 이미지를 읽고 동일한 크기의 이미지를 생성 할 수 있어야합니다. 이것은 인기 콘테스트이므로, 가장 독창적이며 (독점에 가장 가까운) 가장 독창적 인 …

23
ASCII 아트 팔각형
입력 integer가 주어지면 문자 n > 1로 구성된 측면 길이를 가진 ASCII 아트 팔각형을 출력하십시오 n. 아래 예를 참조하십시오. n=2 ## # # # # ## n=3 ### # # # # # # # # # # ### n=4 #### # # # # # # # # # …
22 code-golf  ascii-art  code-golf  geometry  code-golf  balanced-string  code-golf  cops-and-robbers  code-challenge  cops-and-robbers  code-golf  code-golf  random  cryptography  code-golf  array-manipulation  number  code-challenge  integer  code-golf  math  integer  code-golf  math  math  parsing  image-processing  test-battery  math  number  combinatorics  fastest-code  code-golf  code-golf  math  number-theory  rational-numbers  polynomials  code-golf  math  geometry  code-golf  code-golf  number-theory  primes  factoring  code-golf  restricted-source  code-golf  string  decision-problem  counting  code-golf  math  sequence  fibonacci  code-golf  array-manipulation  counting  code-golf  array-manipulation  number-theory  code-golf  array-manipulation  code-golf  random  code-golf  string  hexadecimal  code-golf  string  code-challenge  sorting  code-golf  number  floating-point  code-golf  sorting  code-golf  decision-problem  fibonacci  code-golf  number  combinatorics  code-golf  string  code-golf  math  code-golf  electrical-engineering  code-golf  javascript  code-golf  base-conversion  code-golf  array-manipulation  matrix  binary-matrix  code-golf  kolmogorov-complexity  python  perl  ruby  code-golf  number  code-golf  optimization  integer-partitions  code-golf  string  code-golf  ascii-art 

12
흐려 요?
도전 하늘 이미지가 제공되면 클라우드 커버를 oktas로 출력해야합니다. 제공된 이미지는 이미지 파일 (유형은 사용자에게 달려 있음)이며 출력은 STDOUT입니다. 옥 타스 기상학에서 okta는 기상 관측소와 같은 특정 위치에서 구름의 양을 설명하는 데 사용되는 측정 단위입니다. 하늘 상태는 0 옥 타스 (완전 맑은 하늘)에서 8 옥 타스 (완전 흐린 날씨)에 이르기까지 구름으로 …

30
0이 아닌 고유 한 숫자로 임의의 n 자리 숫자를 얻습니다.
나는 이 질문을 읽고 그것이 좋은 도전이 될 것이라고 생각했다. 태스크 입력 0<n<10으로 임의의 숫자를 생성하십시오. 정확히 n 자리 첫 번째가 아닌 0 그래서 f(n)>10**(n-1)-1 고유 숫자 우승 기준 이것은 코드 골프 이므로 가장 짧은 코드가 승리합니다. 무작위 나는 균등하게 분포 된 것을 의미합니다. 따라서 프로그램의 관점에서 볼 때 각각의 …
22 code-golf  number  random  grid  game  king-of-the-hill  javascript  code-golf  arithmetic  statistics  code-golf  math  code-golf  math  code-golf  string  palindrome  code-golf  string  interactive  code-golf  quine  polyglot  code-golf  string  stack-exchange-api  code-golf  number-theory  decision-problem  code-golf  tips  code-golf  string  internet  code-golf  graphical-output  image-processing  fractal  code-golf  ascii-art  geometry  hexagonal-grid  code-golf  string  restricted-source  hello-world  code-golf  game  code-golf  cipher  code-golf  permutations  cops-and-robbers  permutations  cops-and-robbers  code-golf  internet  stack-exchange-api  code-golf  ascii-art  random  code-golf  tips  code-golf  ascii-art  code-golf  code-golf  kolmogorov-complexity  code-golf  string  unicode  code-golf  number  sequence  primes  palindrome  code-golf  game  decision-problem  code-golf  math  geometry  code-golf  graphical-output  interactive  code-golf  set-partitions  code-golf  number  arithmetic  restricted-source  code-golf  decision-problem  python  recursion  code-golf  ascii-art  code-golf  source-layout  code-golf  function  recursion  functional-programming  code-golf  game  combinatorics  permutations  code-golf  string  file-system  code-golf  string  hashing  code-golf  stack-exchange-api  code-golf  string  code-golf  math  number  arithmetic  polyglot 

16
이미지의 RGB 채널 추출
입력 (RGB 삼중 일 수 있음) 또는 파일 이름을 입력으로 사용하여 이미지를 지정하면 (이미지에 확장명이없는 특정 파일 이름이 있다고 가정 할 수 있음) 이미지의 단일 색상 채널을 나타내는 이미지를 출력합니다. 또한 출력 할 채널을 나타내는 다른 입력을받습니다. 입력은 3 개의 고유 한 기호 중 하나 일 수 있습니다. 그러나 기호는 …

16
하나 더 프로그램하고 나왔습니다!
양의 정수 중첩 수준을 감안할 때 n문자열 s인쇄 가능한 ASCII 문자 (의 에 ~같은 언어로 실행하면, 프로그램을 출력하는 프로그램을 출력하고, 출력하는 프로그램... 문자열을 출력합니다 s. 총 n프로그램이 생성되어야하며, 모든 프로그램은 답변과 동일한 언어로 실행되어야합니다. 참고 : 기본적으로 제출로 허용되는 모든 프로그램 또는 기능을 출력 할 수 있습니다. s이스케이프 문자로 입력 …
21 code-golf  recursion  code-golf  kolmogorov-complexity  board-game  code-golf  number-theory  polynomials  code-golf  code-golf  array-manipulation  polyglot  alphabet  answer-chaining  code-golf  sequence  math  atomic-code-golf  abstract-algebra  proof-golf  code-golf  internet  code-golf  internet  code-golf  ascii-art  kolmogorov-complexity  code-golf  math  ascii-art  number  integer  code-golf  decision-problem  binary-matrix  code-golf  number  sequence  number-theory  code-golf  math  decision-problem  matrix  abstract-algebra  code-golf  string  keyboard  code-golf  fractal  code-golf  math  sequence  combinatorics  hello-world  vim  code-golf  sequence  code-golf  graphical-output  image-processing  code-golf  decision-problem  matrix  linear-algebra  code-golf  ascii-art  code-golf  math  code-golf  ascii-art  graphical-output  code-golf  string  code-golf  string  substitution  code-golf  string  ascii-art  code-golf  arithmetic  code-golf  number  array-manipulation  decision-problem  code-golf  kolmogorov-complexity  code-generation  fractal  code-golf  ascii-art  kolmogorov-complexity  code-golf  ascii-art  code-golf  string  array-manipulation  code-golf  music  code-golf  array-manipulation  code-golf  internet  stack-exchange-api  math  fastest-algorithm  code-golf  binary  bitwise  code-golf  date  code-golf  string  code-golf  sequence  integer  code-golf  arithmetic  number-theory  code-golf  string  random 

8
당신은 사각형의 수를 셀 수 있습니까?
내가 가장 좋아하는 수학 오락 중 하나는 사각형 격자를 그린 다음 해당 격자에 표시되는 모든 사각형을 찾는 것입니다. 여기 에이 질문을 가지고 자신을 위해 모험하십시오! 당신은 사각형의 수를 셀 수 있습니까? +-----+-----+-----+-----+ | | | | | | | | | | +-----+-----+-----+-----+ | | | | | | | …

8
아놀드의 고양이지도
도전 너비와 높이가 동일한 색상 래스터 이미지 *가 제공되면 Arnold의 cat map에서 변환 된 이미지를 출력합니다 . (* 자세한 내용은 아래 참조) 정의 이미지의 크기가 주어지면 N픽셀의 좌표가 0와 사이의 숫자로 주어진다고 가정합니다 N-1. Arnold의 고양이 맵 은 다음과 같이 정의됩니다. 좌표의 픽셀 [x,y]이로 이동합니다 [(2*x + y) mod N, …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.