Re: Is it possible to save contours to spreadsheet

2018-04-20 Thread Juan Nunez-Iglesias
I would do something along these lines: frames = [] for contour_id, contour in enumerate(contours): current_frame = pd.DataFrame(contour, columns={'row', 'column'}) current_frame['contour'] = contour_id # creates column with repeated valueframes.append(current_frame) full_data =

Re: GLCM calculation using scikit-learn. Error when using greycomatrix

2016-10-01 Thread Juan Nunez-Iglesias
find a solution but if you have an idea on how to solve > this problem, please tell me > > Thank you in advance > Ioannis > > > > On Monday, 19 September 2016 15:41:07 UTC+1, ioannis...@gmail.com wrote: >> >> Thank you very much Juan for your quick reply. >>

Re: Task board

2016-09-15 Thread Juan Nunez-Iglesias
Yes, crazy timing! =D On 15 September 2016 at 9:08:59 AM, Stefan van der Walt ( stef...@berkeley.edu) wrote: On Mon, Aug 29, 2016, at 13:17, Stefan van der Walt wrote: > I have some ideas around (1) that need fleshing out, but in the mean > time I was looking at http://zube.io to address part

Re: Management of PRs, issues, and threads

2016-09-12 Thread Juan Nunez-Iglesias
> This way your PRs are always checked against the latest master, not whatever was around when they were first made I thought Travis did this already? https://docs.travis-ci.com/user/pull-requests "Rather than test the commits that have been pushed to the branch the pull request is from, we

Management of PRs, issues, and threads

2016-08-21 Thread Juan Nunez-Iglesias
Hi everyone, We've had a couple of community fails on GitHub recently: https://github.com/scikit-image/scikit-image/pull/1474#issuecomment-241283056 https://github.com/scikit-image/scikit-image/issues/2080 (The last one is missing a presumably-deleted comment where someone outside the project