I want to implement the picture with QML - qtableview

enter image description here
I'm using QT Creator and the version is Qt6.
And I'm using QML and making model with C++.
I am trying to merge the cell like pickure.but I couldn't find. Please help me!!!
I found the methods about how to merge the cell. but it's made by widget. And my project is Qt quick. so i think i can't using it.

Related

How can I send an image from and HTML form to be analyzed by a python AI?

To dive a bit more in depth, for a Hackathon, a friend and I need to get an image from an HTML form and analyze it using an AI algorithm. We easily handled the HTML form part, but that hard part is sending the image to be analyzed by the algorithm.
How would we do this. Would we have to set the algorithm up on some sort of server and then post the image to it or would we have to somehow integrate the algo into the webpage so it can run there.
Also what frameworks would we need to use and is there a guide to this somewhere?
Thanks,
CantTouchThis
I can't provide you the code because it is a competition, but I can help you a bit:
First (if you are using python) make a script that downloads the photo. You have to download the page and parse html document, find your image with regex and download it.. You can use urllib2 for downloading and Beautiful Soup for parsing html file, or, use htmllib to extract all img tags (override do_img), then use urllib2 to download all the images. Make sure everything is inside a definition or method so that we can call it later in our main script.
Make sure that the images are saved in your same directory
Make the last and main script, first import the first script we have made, and the downloaded file(make sure to give the imports inside a try and except because we haven't downloaded the image yet, you will get a error), call the method or definition of the photo downloading script, then write the rest AI algorithm, tell the file name, after the algorithm executes and gave result, make sure you write a code at the end that deletes the picture, because you might in future be asked to download more images, so you can create a list of websites and use it using a for loop to change the web address in the first script.
Best of Luck!

Displaying lists in html page using arduino

Can anyone please help me by suggesting a best way to create lists in an html page from an arduino code?
As the content in the each list element may change, my idea was to create lists using a loop.
As i am new to html and arduino coding, anyone having idea on creating lists of varying inputs in html page through arduino code, Please let me know.
Thank for the support in advance!!
The principle would be:
Host html on SPIFFS
Create values on the Arduino
Fill the html on the relevant places with the code
As a starting example look at file browser NG example for Arduino esp8266. Here they create lists of the files on spiffs and display them in the browser. https://github.com/gmag11/FSBrowser Stay with the old non library version as a starter its easier to understand and modify,

Format list view and link to OOTB Preview functionality?

I have a document library and i have formatted the list view. This works great, however, we lose the OOTB functionality of SharePoint online where you can "preview" the file. This is where it opens in the main window and you can see the file but you also have all the SPO functionality, Share, Move, Copy, information window, version history etc.
How do i edit my Json to link to the OOTB preview? Does anyone have examples of this?
I was looking at it, but it seems that it is not possible to get items url nor parent folder's url using column formatting. I have found somehting at GitHub that mentioned .spItemUrl, but I wasn't able to use it.
The only way, is to create Field Customizer using Javascript, which will give you much broader options. Unfortunately it is not that easy to build as creating column formatting using JSON.
Reference:
https://learn.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-field-customizer

Using HTML as a GUI for Python 3

Hi so i was wondering if there was anyway to use a webbrowser as an interface for a python script on the same computer. Basically i would like to be able to run a python script. It would open a webbrowser and have like buttons or text boxes and whatever i put in there activates functions in the python script. I am using this cause i want to try and use the google speech recognition that can added to a text box in a webpage to enter text into a python script. Let me know if you guys have any ideas. Thanks. Also i'm not an expert so please leave example code if you can.
Check these two libraries:
http://www.python.org/doc//current/library/webbrowser.html
and
http://learnpythonthehardway.org/book/ex50.html

What's the best way to convert HTML/JS project to GWT

A designer company have made a prototype of a web application using HTML/CSS/JS, with forms, menus, roll-over sub-menus ... Now I have to take this prototype and build GWT views using widgets.
My question is : Do I have to start from scratch and build every view with UIBuinders and integrate the CSS files or there is an easy way to do this ?
Thanks
My suggestion - don't generate HTML. This basically means not using GWT widgets (or only using widgets that provide .wrap(element) method.
I'm taking this approach with my projects and works very well. I put all HTML in one big file and then hide (display: none) all divs. Then I use gwtQuery to identify, copy and show relevant parts. qwtQuery is also used inject behavior (event handlers).