processing tag

54 questions


1 answers
90 views
0
I want to draw using gradation in processing.js.

I am using processing.js, but I would like to use gradation in that drawing.For example http://processingjs.org/learning/basic/lineargradient/, drawing lines one by one seems inefficient.Is there any ...

2 years ago

1 answers
127 views
0
I want to sort the words in the text by TF-IDF score

I want to list the nouns in the text file in order of tf-idf score.In Python, I would like to use MeCab (+natto) to analyze the text containing the tweets, and sort it out by scoring the tf-idf of the...


1 answers
68 views
0
Enter characters into windows in real time with Processing

How can I display the characters typed on the keyboard in real time on the processing window?I would like to display it in Japanese.Thank you for your cooperation.

2 years ago

2 answers
81 views
0
About Procesing Programming

Let me ask you a questionI am currently making a program to roll a simple dice in the processing.The goal is to have a program that randomly displays the appearance until it is clicked, and then stops...

2 years ago

1 answers
88 views
0
What is your favorite library for image processing in Java?

I use JAI media apis and ImageMagick.ImageMagick has several scalability issues and is not very attractive because it is based on JNI. Compared to ImageMagick, JAI's quality is too low when calculatin...


2 answers
121 views
0
c# 3d processing in console (service) applications

I want to create a service program (running on the server) that calls Wavefront format (*.obj) on the C# console, applies shader, uvmap, bumpmap, etc., and stores it as a 2d image.I tried using librar...

2 years ago

1 answers
129 views
0
I would like to ask you about multiprocessing for simple calculation in Python

The code below is a summary (?) of the questions.Although oversimplified in the code below, the resulting matrix M approached by each process is located in a different position (each process wants to ...


1 answers
117 views
0
Python multiprocessing question.

from multiprocessing import Processdef GO(): print('Hi\n')if __name__=='__main__': pr1 = Process(target=GO) pr2 = Process(target=GO) pr1.start() pr2.start() pr1.join() pr2.join()I made it while lookin...


1 answers
137 views
0
Question about Python multiprocessing.

a=[1,2,3,4,5]b=[]for c in a: b.append(c)print(b) # Output is [1,2,3,4,5]I'm trying to execute the above code quickly using multiprocessing.from multiprocessing import Poola=[1,2,3,4,5]def abc(a): b=[]...


1 answers
122 views
0
I'm going to create an image gallery, and I'd like to ask you a question about thumbnail capacity and how to save it!

We are creating a website with a basic gallery structure that gathers thumbnail images and makes the image appear larger when you click on the thumbnail. Currently, thumbnails are imported from the sa...

« - 4 - »

© 2024 OneMinuteCode. All rights reserved.