This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import base64 | |
| import kerberos | |
| import imaplib | |
| class IMAPGSSMixin(object): | |
| def gss_cb(self,challenge): | |
| input_token = base64.b64encode(challenge).decode('utf-8') | |
| if self.step == 0: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #coding: utf8 | |
| import image | |
| import numpy as np | |
| def hough(img,activation=None,edges=8,debug=None): | |
| """ | |
| Berechnet die Hough-Transformation für ein Bild. | |
| Es wird parallel zum Bildraum ein 2-dimensionaler | |
| Parameterraum angelegt ("hough_raum") mithilfe dessen |
NewerOlder