A module that comes with Python, doesn´t register? Programming Web Development by Audun …' Traceback (most recent call last): File &quot;C:\Users\Audun Nilsen\open cv - tot.py&quot;, line 1, in <module>…; import cv2 # OpenCV for image processing ModuleNotFoundError: No module named 'cv2' I double-checked… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun …\open cv - tot.py&quot;, line 8 image = cv2.imread(&quot;C:\Users\Audun Nilsen\Pictures\417507225_372771342183154_3253415116081493518_n.jpg&quot;) SyntaxError: (unicode error) 'unicodeescape… processing ModuleNotFoundError: No module named 'cv2' >>> I double-checked to see if I had installed it, and ... it… Re: A module that comes with Python, doesn´t register? Programming Web Development by Reverend Jim … python 3.10. I know that the &quot;next to latest and greatest&quot; is 3.11x but I am currently using… ASUS Laptops - my experience Hardware and Software by Reverend Jim … SSD and an empty internal bay for a 2.5&quot; drive. I didn't install a second drive until October… was shipped back within four days with a note stating &quot;the customer's problem has been resolved. I am skeptical… makes sense. Since USB ports are powered, why not do double duty and use them for power/charging. In a pinch… Re: ASUS Laptops - my experience Hardware and Software by toneewa Some information left out is the actual name/ model of laptop, hard drive, and whether or not it was visible in the BIOS. Some features may have a power saving mode or power plan, even software controls. Create a new power plan, go to high performance mode. Update drivers and BIOS. Inspecting the controller's connection to the motherboard and port,… Re: ASUS Laptops - my experience Hardware and Software by rproffitt …'ve been lucky with them. OK, there is a &quot;thing&quot; about some models where you have to install a media… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim The previous unit was a Vivobook 15 X513EA-BH59-CB. The current one is a Vivoboox ASUS K350 2ZA BB51 CB. I'm assuming that the problem with the first unit was not a missing driver because both ASUS and Best Buy (Geek Squad) could not get it working. Re: ASUS Laptops - my experience Hardware and Software by rproffitt https://www.asus.com/support/faq/1044458/ notes the Intel RST as well. As to BB/GS, I've found them hit or miss on this area. And on some models you &quot;Disable Intel Volume Management Device (VMD) technology&quot;. I'm of the opinion that such steps should be automatic and built into &quot;modern&quot; Windows. Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim Took my laptop in to Best Buy ths morning and they said it would have to be shipped back to ASUS for repair (again). The good news is that it's still under warranty and I have a spare laptop. The bad news it that it's also an ASUS, but at least it's an older one from before they started making crap. Re: ASUS Laptops - my experience Hardware and Software by toneewa …/6535990.p?skuId=6535990) when someone was looking for a &quot;cheaper&quot; laptop. I like reading those 1-star reviews. They… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim >USB-C ports can wear out, and become loose after 6 months of use Seem like bad design to me. As for the price, the ASUS models I bought were both the best price that met my specs. Re: ASUS Laptops - my experience Hardware and Software by toneewa Indeed, I recommend to anyone that has USB ports to use the magnetic plugs for mini and micro USB ports. I see you could have the Thunderbolt 4 USB-C, so I'm sure it did cost little more. That would check one of my boxes. 144hz+ would be another. I don't need bloodshot eyes from 60hz. If you are a DIY fixer, you can also [replace the TB4 ports](… VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho Double Dim StepX As Double Dim StepY As Double Dim VertX As Double Dim VertY As Double Dim HorizX As Double Dim HorizY As Double…amp; vbTab & &quot; Draw Horizontal&quot; & vbTab & VertDist & vbTab & &quot;vertical line&quot; End If WallDistance = … Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho Double Dim StepX As Double Dim StepY As Double Dim VertX As Double Dim VertY As Double Dim HorizX As Double Dim HorizY As Double…Me.Caption = &quot;X: &quot; + Str(Player.MapX) + &quot; Y: &quot; + Str(Player.MapY) + &quot; FPS: &quot; + Str(FramePerSecond) + &quot;Player Radians: &quot; + Str(… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho … As Double Dim StepX As Double Dim StepY As Double Dim VertX As Double Dim VertY As Double Dim HorizX As Double Dim HorizY As Double Dim… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho … As Integer, Shift As Integer) Const Speed As Double = 4.2 Const Radians As Double = 0.1 If (KeyCode = vbKeyEscape) Then…End If Me.Caption = &quot;X: &quot; + Str(Player.MapX) + &quot; Y: &quot; + Str(Player.MapY) + &quot; FPS: &quot; + Str(FramePerSecond) + &quot;Player Radians: &quot; + Str(Player.Radians… C++ programming error Programming by sammieb … line is as follows: cout << 'furey, edward &quot;sphere calculator&quot; at https://www.calculatorsoup.com/calculators/geometry-solids/sphere… string. But when I replace them with double quotes, I get the &quot;not expected&quot; error. Any help would be greatly appreciated… Re: Issues migrating Magento products Programming Web Development by anastefanyuk … Magento\Framework\Config\Dom\ValidationException indicating &quot;Extra content at the end of the document,&quot; suggests that there is likely an… tool expects the XML file to follow a specific schema. Double-check that your file matches the structure and elements defined… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by rproffitt For VertDist I would set a break on line 104 so I could examine the values in line 103. Also, could be a localization issue that the comma is used for the decimal point and the integer of the results might be 35 and 4548. Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho finally i found the problem is on these line: HorizDist = Sqr(((HorizX - Player.PosX) * (HorizX - Player.PosX)) + ((HorizY - Player.PosY) * (HorizY - Player.PosY))) 'works fine VertDist = Sqr(((VertX - Player.PosX)) * ((VertX - Player.PosX))) + (((VertY - Player.PosY)) * ((VertY - Player.PosY)))'calculation incorrect like … Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho not so easy :( WallDistance = WallDistance * Cos(Abs(RayRadians - Player.Radians)) 'avoiding the Fish Effect RayHeight = (ObjectSize / WallDistance) * 200 '320 is the width screen If (RayHeight > 200) Then RayHeight = 200 A.ForeColor vbBlue A.DrawLine 475 + 50 + RayCounts, 200 / 2 - … Re: C++ programming error Programming by rproffitt …; using namespace std; int main() { cout << &quot;furey, edward \&quot;sphere calculator\&quot; at https://www.calculatorsoup.com/calculators/geometry-solids…/sphere.php from calculatorsoup, https://www.calculatorsoup.com - online calculators&quot; << endl; return 0; } Re: complex numbers calc....something's wrong! Programming Software Development by sleepybug double. Re: How can i run the script again from inside the script? Programming Software Development by Godflesh double Re: Quick question about gdb debugging Programming Software Development by flipjoebanana [Double] Re: Game for Computer Science Class Programming Software Development by TrustyTony double Re: Forms in Visual Studio Programming Software Development by sdhawan double Re: I have one problem with '/' Programming Software Development by xml_looser double Double to string conversion with sprintf Programming Software Development by sreehari.rk double b = 3.0000; char s[20]; sprintf(s,&quot;%f&quot;,b); Here char s[20] is fixed it should take … Re: Double type problem in C Programming Software Development by IsharaComix Double variables just don't have that much precision. If you need numbers that are that fine-tuned, you need to look for an &quot;arbitrary/multiple precision&quot; library - something like GMP [url]http://gmplib.org/[/url] Hope this helps.