Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
52a6ea7b
Kaydet (Commit)
52a6ea7b
authored
Ock 15, 1997
tarafından
Roger E. Masse
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Opps. Added tests for the last two methods that were missing from
the test program: 'grey2rgb' and 'rgb2grey'
üst
e17ec8d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
test_imageop.py
Lib/test/test_imageop.py
+11
-1
No files found.
Lib/test/test_imageop.py
Dosyayı görüntüle @
52a6ea7b
...
...
@@ -36,7 +36,7 @@ def main(use_rgbimg=1):
print
'tovideo'
videoimage
=
imageop
.
tovideo
(
image
,
4
,
width
,
height
)
# Convert an rgb image to an 8 bit rgb
(greyscale)
# Convert an rgb image to an 8 bit rgb
if
verbose
:
print
'rgb2rgb8'
greyimage
=
imageop
.
rgb2rgb8
(
image
,
width
,
height
)
...
...
@@ -46,6 +46,16 @@ def main(use_rgbimg=1):
print
'rgb82rgb'
image
=
imageop
.
rgb82rgb
(
greyimage
,
width
,
height
)
# Convert an rgb image to an 8 bit greyscale image
if
verbose
:
print
'rgb2grey'
greyimage
=
imageop
.
rgb2grey
(
image
,
width
,
height
)
# Convert an 8 bit greyscale image to a 24 bit rgb image
if
verbose
:
print
'grey2rgb'
image
=
imageop
.
grey2rgb
(
greyimage
,
width
,
height
)
# Convert a 8-bit deep greyscale image to a 1-bit deep image by
# tresholding all the pixels. The resulting image is tightly packed
# and is probably only useful as an argument to mono2grey.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment