pillow

    36熱度

    1回答

    我正在嘗試調整一些圖像的大小,其中大部分都是JPG。但在一些圖片,我得到的錯誤: Traceback (most recent call last): File "image_operation_new.py", line 168, in modifyImage tempImage.save(finalName); File "/Users/kshitiz/.virt

    1熱度

    1回答

    我寫了這個代碼: with Image.open(objective.picture.read()) as image: image_file = BytesIO() exifdata = image.info['exif'] image.save(image_file, 'JPEG', quality=50, exif=exifdata) zf.write

    4熱度

    5回答

    我想要的指令之後安裝枕頭枕安裝: http://pillow.readthedocs.org/en/latest/installation.html#mac-os-x-installation 的問題是,我與python -c 'from PIL import Image遇到錯誤。 python -c "from PIL import Image" Traceback (most recen

    0熱度

    2回答

    Helllo 我正在使用命令行來引入Pillow。 from PIL import Image myImage = Image.open(green_leaves.jpg) 給我下面的錯誤 name 'green_leaves' is not defined 你能幫助我嗎? 謝謝 雨果

    3熱度

    2回答

    我運行此代碼 from PIL import Image import numpy as np im = Image.open("/Users/Hugo/green_leaves.jpg") im.load() height, widht = im.size p = np.array([0,0,0]) for row in range(height): for col in

    3熱度

    3回答

    我想在python連鎖反應應用於圖像。 ? 我發現枕頭的im.transform(im.size,Image.MESH,......是有可能 也許我必須加載與numpy的圖像和應用算法 我也發現了這一點:http://www.pygame.org/project-Water+Ripples-1239-.html 。 手動另一種方式,但我不知道任何的算法,這是我的開始並不做任何事情...... #!

    2熱度

    3回答

    我試圖用python將原始圖像數據轉換爲png。 我很新的python,尤其是圖像處理... 原始文件是一個16位灰度圖像。 正如我已經掃描了論壇,我想出了以下解決方案: from PIL import Image, ImageFilter import numpy as np from scipy import ndimage, misc rawfile = np.fromfile('

    0熱度

    1回答

    我想在Django中使用ImageField,並且我被告知要安裝Pillow而不是PIL。我裝枕頭做這個 pip install Pillow ,然後當我跑的服務器,它說 To use ImageFields, you need to install PIL ,但有人告訴我,它應該只是有枕頭工作。我做了進一步的研究,我讀到我應該嘗試 pip install Pillow-PIL 我試過

    2熱度

    2回答

    我從這裏獲得了全景鏡頭:http://www.0-360.com/,我用python圖像庫編寫了一個腳本,將圖像「解包」成全景圖。儘管如此,我想自動化這個過程,因爲我必須指定圖像的中心。此外,獲得圓的半徑也會很好。輸入圖像看起來是這樣的: 而且「展開」圖像看起來是這樣的: 到目前爲止,我一直在努力霍夫圓檢測。我有的問題是選擇正確的值使用。另外,有時候,中心圓附近的黑色物體似乎會把它扔掉。 其他想法

    1熱度

    1回答

    這個錯誤有點棘手,因爲我使用的代碼在我的其他系統上運行時沒有問題。我今天在一臺新機器上安裝了這些庫,並嘗試運行我的代碼時遇到了錯誤(可在其他OSX 10.9機器上運行)。 Traceback (most recent call last): File "proofer.py", line 295, in <module> main() File "proofer.py