Jake Ireland

Results 70 comments of Jake Ireland

I feel as though this wouldn't bee too tricky to implement. Is it not just a matter of copying some code over, and making sure nothing breaks? Or is there...

I’m happy to do this in a couple of hours unless someone beats me to it before then! I’ve copied your code @blegat, and added a “verbose” option, in one...

@pranshumalik14 great, okay! If you wanted to add `verbose` and `vverbose` Keyword arguments, I’ve done that here: https://github.com/jakewilliami/CodingTheory.jl/blob/master/src/rref.jl

@pranshumalik14 I’m on slack :-)

I'm pulling top level domains from [the IANA TLD database](https://www.iana.org/domains/root/db), and if they are country-code TLDs, I am using your library to [cross-reference using country code](https://github.com/jakewilliami/tldinfo/blob/0a70e06eb23e9db03b4669ed3edcfd03ed4f27f8/tools/writetlds/writetlds.go#L112-L127). [SU](https://www.iso.org/obp/ui/#iso:code:3166:SU) was just an...

Or perhaps teach programme how to read a pre-trained (and well-trained) xml file, such as with OpenCV.

See: ```python if os.path.isfile('votes.pkl'): images = [] print('loading preprocessed votes..') with open('votes.pkl', 'rb') as file: votes = pickle.load(file) f_votes = next(iter(votes.values())).tolist() for img, _ in f_votes: images.append(img) images = np.array(images)...

Commit e7295f8d closes the original issue. However, it does not address the reading of well-trained xml files (i.e., from [OpenCV](https://github.com/opencv/opencv/blob/master/data/haarcascades/)). Keeping this open for future development.

[It's not just me that wants this feature](https://github.com/aldebaro/ufpa-face-detection/issues/1)...

[This](https://github.com/aldebaro/ufpa-face-detection/blob/master/ufd_convertXML.m) may be helpful. Edit: it seems like that is maybe based on [this](https://github.com/BehindTheSciences/Face-Recognition-using-Matlab-and-Sift/blob/master/ConvertHaarcasadeXMLOpenCV.m).